home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / egroupware_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  67 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(14358);
  8.  script_bugtraq_id(11013);
  9.  script_version("$Revision: 1.3 $");
  10.  
  11.  name["english"] = "eGroupWare Cross-Site Scripting Vulnerability";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is running eGroupWare, a web based tool to facilitate
  17. office communication.
  18.  
  19. The remote version of this software is vulnerable to a cross-site scripting
  20. attack which may allow an attacker to steal the cookies of a legitimate
  21. user by sending him a malformed link to this website.
  22.  
  23. Solution : Upgrade to the latest version of this software
  24. Risk factor: Medium";
  25.  
  26.  script_description(english:desc["english"]);
  27.  
  28.  summary["english"] = "Checks for the presence of an XSS bug in EGroupWare";
  29.  
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  35.  family["english"] = "CGI abuses";
  36.  family["francais"] = "Abus de CGI";
  37.  script_family(english:family["english"], francais:family["francais"]);
  38.  script_dependencie("egroupware_detect.nasl");
  39.  script_require_ports("Services/www", 80);
  40.  exit(0);
  41. }
  42.  
  43. #
  44. # The script code starts here
  45. #
  46.  
  47.  
  48. include("http_func.inc");
  49. include("http_keepalive.inc");
  50.  
  51. port = get_http_port(default:80);
  52.  
  53. if(!get_port_state(port))exit(0);
  54. if(!can_host_php(port:port))exit(0);
  55. if (  get_kb_item(string("www/", port, "/generic_xss")) ) exit(0);
  56.  
  57. kb  = get_kb_item("www/" + port + "/egroupware");
  58. if ( ! kb ) exit(0);
  59. stuff = eregmatch(pattern:"(.*) under (.*)", string:kb);
  60. loc = stuff[1];
  61.  
  62. req = http_get(item:string(loc, "/index.php?menuaction=calendar.uicalendar.day&date=20040405<script>foo</script>"), port:port);
  63.  
  64. r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  65. if( r == NULL )exit(0);
  66. if('<script>foo</script>' >< r ) security_warning(port);
  67.